*{
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  padding: 0px;
  margin: 0px;
}
/* start Header*/
header {
    height: 50px;
    background-color: #3a8bcd;
    line-height: 30px;
  }
  
  .Product_Head,
  .Product_Logo {
    display: flex;
    justify-content: center;
  }
  
  .Product_Head h4 {
    text-transform: capitalize;
    color: #e1eef8;
    padding: 10px 0px 20px 0px;
    font-family: Arial, Helvetica, sans-serif;
  }
  
  .Product_Logo img {
    margin: 30px 0px;
    cursor: pointer;
  }
  
  hr:first-of-type {
    background-color: #eeeeee;
    opacity: 0.3;
    margin: 0px;
  }
  
  nav .container ul {
    display: flex;
    justify-content: space-between;
    width: 48%;
    margin: 10px 0px 10px 292px;
    list-style-type: none;
  }
  nav .container ul li{
    margin-left: -8px;
  }
  nav .container ul li a {
    text-transform: uppercase;
    text-decoration: none;
    color:#1e90ec !important;
    font-weight: bold;
    opacity: 0.9;
  }
  /* End Header*/
 